The VaultWhat is the vault ?The vault contains lots of unsorted problems, snippets, remarks and ideas, mostly found in posts in the WebWork Forum. You can think of this page as a place to store content before it is analyzed and put in the official docs, cookbook or FAQ. It's raw, unpolished, and can contain typos. If you can't find it in the docs, you can take a look in here (or use the search in the forum). It also gives an idea of what problems ww users encounter in their search for the holy grail. Feel free to 'take' issues from this page and move them to an appropriate page.
Migration to 2.2Note about upgrading your WW tags to 2.2Just a quick fyi that caused issues for us... In 2.2 when extending UIBean evaluateExtraParams() no longer takes parameters. (Our parameters were not working until we realized that evaluateExtraParams was not being invoked due to the change.) In 2.1 evaluateExtraParams was passed the stack IIRC. Not sure if this is documented anywhere but it caused us quite a headache when migrating from 2.1 to 2.2. Where did the velocity templates go ?checking cvs log, it seems that Pat has removed it with comment as follows: removing velocity macro implementations - they are so old and out of date now it will cause more harm than good keeping them around Best practicesShould I make an action or rather link to a .jsp page ?If you put an action configuration in your xwork.xml but don't put an action Type conversionType conversion for a static inner class ?Collection_inner property name = your.package.ClassName$StaticInnerClassName (notice the dollar sign between the fully qualified Class name and the static inner class) Migration to Spring IoCHow can we migrate ServletRequestAware, ServletResponseAware and ValidationAware to Spring bean definitions?I tink just the normal way would work. The action will now be created by spring, and if the ServletConfigInterceptor is in the stack and the action implementation implement those interface, webwork should set the appropriate methods. Freemarker, Velocity, JSPHow to disable Velocity template caching ?The "wwclass" was the resource loader I need to change. wwfile.resource.loader.cache=false wwclass.resource.loader.cache=false (http://jroller.com/page/gigix?entry=velocity_performance_issue_solved) How to catch Freemarker exceptions (the ugly big yellow pages)FreeMarker delegates exception handling to so-called TemplateExceptionHandlers. By default the HTML_DEBUG_HANDLER is used (this one generates the yellow error page), but you can easily specify a different exception handler by using the setTemplateExceptionHandler method of your configuration object. FM provides some simple handlers you can use, in your case I recommend the RETHROW_HANDLER ( My ww:include actions aren't processedDid you declare the ww tag library in your includes ? If I'm not mistaken, jsp includes work different from ww includes (ww process the pages before including them). I'm using ww:urlHelper in combination with the c:out tag, but it won't work !if the url with & is used in the value attribute it will not work properly unless the escapeXml is set to false. ValidationHow to disable validation on the first page load (to show a in input form)?If you define your own stack you can exclude methods from validation by adding the excludeMethods param to both Validation and Workflow. Assuming you are using the defaultStack the the methods input, back and cancel will be ignored. Change default to action!input and declare the input method to return INPUT. When using clientside validation, DWR states it gets No Data From ServerWhen using firefox if a user has focus on an input control and then clicks the submit button i get a DWR error stating that there was no data from the server. Why can't I use && (=and) in my validation rules ? || (=or) does work !You can't use && directly since the validation files have to be wellformed xml. The correct syntax would be & ;& ; (without the spaces) Ajax, JavascriptDatepicker i18n problemsDatePicker might have some problems in certain localised enviroments, because some of the language files included in DHTML / JavaScript Calendar are not valid (don't have some variables, for example WEEKEND definition). Is simple solution to overide files like: The only way to fix that, is correct calendar-(your language).js... Already fixed for 2.2.1, available via CVS HEAD:
Datepicker does not allow time editing, or works with wrong date formatThe trick is to format the date correctly before sending it to the datepicker, AND telling the datepicker what format you are using. <ww:date name="%{new java.util.Date()}" format="dd-MM-yyyy hh:mm" id="date"/> <ww:datepicker value="%{#date}" showstime="%{true}" format="%d-%m-%Y %H:%M"/> Note: of course you should use property keys here, but you'll have to specify different keys, since the formatting expression for java and javascript are different (but should result in the same format !): my.java.datetime.format=dd-MM-yyyy hh:mm my.javascript.datetime.format=%d-%m-%Y %H:%M And the use the following snippet instead: <ww:date name="%{new java.util.Date()}" format="%{getText('my.java.datetime.format')}" id="date"/> <ww:datepicker value="%{#date}" showstime="%{true}" format="%{getText('my.javascript.datetime.format')}"/> Having DisplayTag's table living side by side with WebWork's Ajax TabPanelToken Interceptor doesn't play well with ExecuteAndWait InterceptorApplication serversWebWork hot-redeployment problem with Tomcat 5.5Try to adjust your Tomcat context settings... <Context docBase="${catalina.home}/webapps/YOURWEBAPP" antiResourceLocking="true" antiJARLocking="true"> ... </Context> Deploying WebWork on GlassfishOne of my co-workers was deploying a forum application that uses WebWork code. He ran into some deployment and execution issues, related to the sercurity policy. If you want to deploy WebWork apps on GlassFish, you may want to read http://blogs.sun.com/roller/page/paulsen?entry=configuring_the_security_manager_in WebSphere doesn't recongnize all the properties file (eg. webwork.properties, default.properties) in WebWork Web ApplicationBrowserDifferent version of a browser co-existing together
IE6 failed to open up the downloaded zip fileExamplesSteps on getting image using WW actionh2, Xml Parsing
FreemarkerStrange Errors/Warnings when using displaytag with freemarkerFreemarker errors (especially on select tag, typically on websphere) under concurrent access |